       :root {
           --primary: #4B2364;
            --primary-dark: #3a1b4f;
            --primary-light: #6b3a8a;
            --primary-gradient: linear-gradient(135deg, #4B2364, #6b3a8a);
            --text-dark: #0a0a0a;
            --text-gray: #3d3d3d;
            --text-light: #6b6b6b;
            --bg-light: #f8f6fa;
            --bg-white: #ffffff;
            --border-light: #e8e4ed;
            --shadow-sm: 0 4px 20px rgba(75, 35, 100, 0.06);
            --shadow-md: 0 8px 32px rgba(75, 35, 100, 0.10);
            --shadow-lg: 0 16px 48px rgba(75, 35, 100, 0.12);
            --radius-lg: 32px;
            --radius-md: 24px;
            --radius-sm: 16px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --secondary: #553c9a;
            --accent: #8b5cf6;
            --text: #1f2937;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
  scrollbar-gutter: stable;
}

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            padding-top: 72px;
        }


        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 28px;
        }

        /* ===== BUTTONS ===== */
        .btn-primary {
            background: var(--primary-gradient);
            color: white;
            border: none;
            padding: 14px 40px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            cursor: default;
            transition: var(--transition);
            box-shadow: 0 12px 28px rgba(75, 35, 100, 0.30);
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 40px rgba(75, 35, 100, 0.35);
        }

        .btn-outline {
            background: transparent;
            border: 1.5px solid var(--primary);
            color: var(--primary);
            padding: 10px 26px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
            cursor: default;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
            box-shadow: 0 8px 24px rgba(75, 35, 100, 0.25);
        }


        .page-header {
            padding: 60px 0 40px;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3.2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--text-dark);
        }

        .page-header h1 span {
            color: var(--primary);
        }

        .page-header p {
            color: var(--text-gray);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 8px auto 0;
        }

        .section-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header .label {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--primary);
            background: rgba(75, 35, 100, 0.08);
            padding: 6px 20px;
            border-radius: 40px;
            display: inline-block;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 2.4rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--text-dark);
        }

        .section-sub {
            color: var(--text-gray);
            max-width: 560px;
            font-size: 1.1rem;
            margin-top: 6px;
        }

        .about-intro {
            padding: 20px 0 50px;
        }

        .about-intro-content {
            background: var(--primary-gradient);
            padding: 60px 50px;
            border-radius: var(--radius-lg);
            color: white;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .about-intro-content::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .about-intro-content * {
            position: relative;
            z-index: 1;
        }

        .about-intro-text h2 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }

        .about-intro-text p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .about-intro-text p:last-child {
            margin-bottom: 0;
        }

        .about-intro-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 8rem;
            color: rgba(255, 255, 255, 0.15);
        }

        .company-info {
            padding: 30px 0 50px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .info-card {
            background: var(--bg-white);
            padding: 40px 30px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .info-card:hover {
            transform: translateY(-6px);
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }

        .info-card i {
            font-size: 2.8rem;
            color: var(--primary);
            display: block;
            margin-bottom: 16px;
            background: rgba(75, 35, 100, 0.06);
            width: 70px;
            height: 70px;
            line-height: 70px;
            border-radius: 50%;
            margin-left: auto;
            margin-right: auto;
        }

        .info-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .info-card p {
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.7;
        }

        /* ===== CORE VALUES ===== */
        .core-values {
            padding: 30px 0 50px;
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            margin: 10px 0 30px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
        }

        .core-values .container {
            padding: 0 28px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .value-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: var(--radius-md);
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .value-item:hover {
            border-color: var(--primary);
            background: rgba(75, 35, 100, 0.03);
            transform: translateY(-4px);
        }

        .value-item i {
            font-size: 2.6rem;
            color: var(--primary);
            display: block;
            margin-bottom: 12px;
            background: rgba(75, 35, 100, 0.06);
            width: 68px;
            height: 68px;
            line-height: 68px;
            border-radius: 50%;
            margin-left: auto;
            margin-right: auto;
        }

        .value-item h4 {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .value-item p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        /* ===== TEAM SECTION ===== */
        .team {
            padding: 40px 0 50px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .team-card {
            background: var(--bg-white);
            padding: 30px 20px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .team-card:hover {
            transform: translateY(-6px);
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }

        .team-card .avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            color: white;
            font-size: 2.2rem;
            font-weight: 700;
        }

        .team-card h4 {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-dark);
        }

        .team-card .role {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .team-card p {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-top: 6px;
        }

        .timeline {
            padding: 40px 0 50px;
            background: var(--primary-gradient);
            border-radius: var(--radius-lg);
            margin: 10px 0 30px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }

        .timeline * {
            position: relative;
            z-index: 1;
        }

        .timeline .section-header .label {
            background: rgba(255, 255, 255, 0.15);
            color: white;
        }

        .timeline .section-title {
            color: white;
        }

        .timeline .section-sub {
            color: rgba(255, 255, 255, 0.8);
        }

        .timeline-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 10px;
        }

        .timeline-item {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-md);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
        }

        .timeline-item:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-4px);
        }

        .timeline-item .year {
            font-size: 2.4rem;
            font-weight: 800;
            color: white;
            display: block;
        }

        .timeline-item .event {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            font-size: 1rem;
            margin-top: 4px;
        }

                .trust-badge {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            padding: 20px 0 10px;
            color: var(--text-light);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .trust-badge i {
            color: var(--primary);
            margin-right: 8px;
        }

        .trust-badge span {
            display: flex;
            align-items: center;
        }

        .footer {
            background: var(--primary);
            color: #e5e7eb;
            padding-top: 40px;
        }

        /* GRID */
        .footer-container {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 50px;
            padding: 0 20px;
        }

        /* LOGO */
        .footer-logo img {
            height: 60px;
            margin-bottom: 15px;
            filter: brightness(75)
        }

        /* TEXT */
        .footer-col p {
            font-size: 14px;
            line-height: 1.7;
            color: #d1d5db;
        }

        /* MINI STATS */
        .footer-stats {
            margin-top: 15px;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .footer-stats span {
            background: rgba(255, 255, 255, 0.1);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
        }

        /* HEADINGS */
        .footer-col h3 {
            color: #fff;
            margin-bottom: 18px;
            font-size: 18px;
            position: relative;
        }

        .footer-col h3::after {
            content: "";
            width: 45px;
            height: 3px;
            background: #a78bfa;
            position: absolute;
            bottom: -6px;
            left: 0;
        }

        /* LINKS */
        .footer-col a {
            display: block;
            color: #d1d5db;
            text-decoration: none;
            margin: 10px 0;
            transition: 0.3s ease;
        }

        /* 🔥 Smooth hover */
        .footer-col a:hover {
            color: #fff;
            transform: translateX(6px);
        }

        /* SOCIAL */
        .socials {
            margin-top: 15px;
        }

        .socials a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            margin-right: 10px;

            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: 0.3s;
        }

        /* 🔥 Glow effect */
        .socials a:hover {
            background: #a78bfa;
            box-shadow: 0 0 15px rgba(167, 139, 250, 0.9);
            transform: translateY(-4px);
        }

        /* CONTACT ICONS FIX */
        .footer-col p {
            color: #d1d5db;
        }

        /* icon ko white force */
        .footer-col p i {
            color: #ffffff;
            margin-right: 8px;
        }

        /* BOTTOM */
        .footer-bottom {
            text-align: center;
            padding: 25px;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: #cbd5f5;
        }

        /* 📱 RESPONSIVE */
        @media (max-width: 900px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 500px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
        }


        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .about-intro-content {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 40px 30px;
            }

            .about-intro-icon {
                font-size: 5rem;
            }

            .info-grid {
                grid-template-columns: 1fr 1fr;
            }

            .values-grid {
                grid-template-columns: 1fr 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr 1fr;
            }

            .timeline-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                align-items: center;
            }

            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px 28px;
            }

            .page-header h1 {
                font-size: 2.4rem;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .values-grid {
                grid-template-columns: 1fr 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr 1fr;
            }

            .timeline-grid {
                grid-template-columns: 1fr 1fr;
            }

            .about-intro-content {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .values-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .timeline-grid {
                grid-template-columns: 1fr;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .trust-badge {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }

            .about-intro-text h2 {
                font-size: 2rem;
            }
        }